home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / BORLAND TURBO / BATCH.PAK / COMPRESS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.4 KB  |  49 lines

  1. /**************************************************************************
  2.  *
  3.  *  THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
  4.  *  KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
  5.  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
  6.  *  PURPOSE.
  7.  *
  8.  *  Copyright (c) 1994 - 1995    Microsoft Corporation.    All Rights Reserved.
  9.  *
  10.  **************************************************************************/
  11. // compress.h : header file
  12. //
  13.  
  14.  
  15.  
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CCompressThread command target
  18.  
  19. class CCompressThread : public CWinThread
  20. {
  21.     DECLARE_DYNCREATE(CCompressThread)
  22. protected:
  23.     CCompressThread();           // protected constructor used by dynamic creation
  24.  
  25. // Attributes
  26. public:
  27.  
  28. // Operations
  29. public:
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CCompressThread)
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38. protected:
  39.     virtual ~CCompressThread();
  40.  
  41.     // Generated message map functions
  42.     //{{AFX_MSG(CCompressThread)
  43.         // NOTE - the ClassWizard will add and remove member functions here.
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48. /////////////////////////////////////////////////////////////////////////////
  49.